DecodeQuotedPrintable Function
Decodes into 'normal' text a string that has been encoded by EncodeQuotedPrintable.
Syntax
result = DecodeQuotedPrintable( [encoding] )
Parameters | ||
encoding (Optional) |
Optional: The text encoding of the passed string. If you pass an encoding, is has the same effect as calling DefineEncoding on the returned String. |
Notes
DecodeQuotedPrintable converts text representations of unprintable characters (i.e., control characters, returns and tabs) back into their original form. It is designed for handling email or usenet messages. It undoes the encoding done by EncodeQuotedPrintable.
The DecodeQuotedPrintable function performs the function in reverse.
See Also
EncodeQuotedPrintable function.